MISSION EDITING AND CREATION
============================
1. Introduction
2. Editing an existing mission
3. Adding a new mission
============================
1. Introduction
The 0.5 update introduced a way to edit and add missions to the mod. This is very simple, and is done with
the XML language. All of the missions are stored in DefaultTruckingMissions.xml and CustomTruckingMissions.xml
I also have included a button for taking coordinates. You use it by pressing I (or whatever you assigned it
in the settings) and your current coordinates will be written to TruckingMissionCreatorLog.txt
If you make a mistake and want to restore to default, you can just delete the file and the mod
will create a new one.

2. Editing an existing mission
You can edit a mission by just changing the values in the XML file. The format is the next:

	<Mission>
		<Name>Mission title [price]</Name>
		<Description>Description. Use \n to make a new line</Description>
		<ID>mission id, a number ranging from 0 to ~2billion</ID>
		<Requirement>mission that needs to be done to unlock this one, leave it at 0 if unsure.</Requirement>
		<TrailerModel>Trailer model, look up trailer models on the internet</TrailerModel>
		<TrailerPosX>X coord you got from the TruckingMissionCreatorLog.txt</TrailerPosX>
		<TrailerPosY>Y coord</TrailerPosY>
		<TrailerPosZ>Z coord</TrailerPosZ>
		<TrailerHeading>heading</TrailerHeading>
		<DestinationX>X coord you got from the TruckingMissionCreatorLog.txt</DestinationX>
		<DestinationY>same</DestinationY>
		<DestinationZ>same</DestinationZ>
		<Payment>Money you get from completing the job</Payment>
		<MaxDamage>maximum damage the cargo can take, leave it at -1 if there's no limit</MaxDamage>
		<TimeLimit>time limit in seconds, leave at -1 if you dont want one</TimeLimit>
		<Wanted>wanted levels received when you pick up the trailer, leave at -1 for none.</Wanted>
		<Activated>is the mission activated? true or false</Activated>
	</Mission>

Changing any of those values will affect the game after you restart it.

3. Adding a new mission
	1. Go to the place where you want the trailer to spawn
	2. Press I to record the coordinates
	3. Go to the place you want the destination to be
	4. Press I
	5. Open CustomTruckingMissions.xml and paste the code above. If the file doesn't exist, make one.
	6. Fill in all the data as you please
	7. The mission is done, you can test it in game
	8. If you want to share your mission, post your code from <Mission> to </Mission>

Enjoy! I would love to see your creations!
-Guad